ポップアップメニューでテキスト選択範囲を検索するuser script
追記
こちらの方がぜんぜんちゃんとしていました。
この記事は一応残します。
https://gyazo.com/ab557126678920e9fdbfb09b65186a41
code:script.js
/* ポップアップメニューで選択範囲を検索する */
scrapbox.PopupMenu.addButton({
title: 'Search this word',
onClick: text => {
const lines = text.split(/\r\n/g) .trim()
.replace(/\^\+.icon\]/gm, '')
const projectRoot = (() => {
const tmp = location.href.split('/')
tmp.pop()
return tmp.join('/')
})()
const currentPageTitle = decodeURIComponent(location.href.split(/\//g).pop())
lines.unshift(from [${currentPageTitle}])
const body = encodeURIComponent(lines.join('\n'))
window.open(https://scrapbox.io/"project"/search/page?q=${text}&tbm=isch)
}
})
'Search this word'はお好きな表現でどうぞ
"project"は自分のものに変えてください